home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / comm / tcp / AmiTCP+GerNet.lha / AmiTCP-4.3.Germanynet.conf next >
Text File  |  1996-11-04  |  1KB  |  68 lines

  1. /* Provider Configuration Follows:
  2. Name            Germany.Net
  3. DialUp          1
  4. Interface       ppp
  5. InterfaceConfig ""
  6. NeedSerial      1
  7. IPDynamic       1
  8. IPAddr          0.0.0.0
  9. DestIP          
  10. Gateway         194.45.120.241
  11. Netmask         255.255.255.0
  12. NSDynamic       1
  13. UseBootP        0
  14. MTU             1500
  15. Phone           ""   
  16. */ zwischen den ^^^^^ Anführungszeichen Telefon-Nummer des Einwahlknotens einfügen /*
  17. */
  18. /* The rest is the Dialer script for this provider */
  19. options results
  20. signal on error
  21.  
  22. Set WaitForTimeout 30
  23. Set InterCharDelay 100
  24.  
  25. /*
  26.  * You can type your login information here:
  27.  */
  28. YourLogin="Infobahn"
  29.  
  30. ShowConsole
  31.  
  32. call CommandState
  33.  
  34. call Dial
  35.  
  36. pause 5
  37.  
  38. Say "Dialed successfully, please log on."
  39.  
  40. /*
  41.  * Manual login if user has not edited this script to contain his own
  42.  * user information.
  43.  * DO NOT EDIT THE "YOUR LOGIN" HERE!
  44.  */
  45. if ( YourLogin = "YOUR LOGIN" ) then do
  46.   Say "Please log in manually using the terminal window shown. You can have"
  47.   Say "automated login, if you edit AmiTCP:db/provider.conf to include your"
  48.   Say "login name and password."
  49.   Status "Please log in manually:"
  50.   ManualConsole
  51. end
  52. else do
  53.   SendLn ""
  54.   SendLn ""
  55.   WaitFor "login:"
  56.   SendLn YourLogin
  57.  
  58. end
  59.  
  60. Set NAMESERVER1 194.45.120.25
  61. Set NAMESERVER1 194.45.120.25
  62. Pause 2
  63. exit 0; /* succesfull exit */
  64.  
  65. error:
  66. Say "Germany.Net: Command on line" SIGL "returned" RC ":" SerScript.LASTERROR
  67. Exit 10
  68.